home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple WWDC 1996
/
WWDC96_1996 (CD).toast
/
Technology Materials
/
MacOS 8 Resources
/
Developer Tools
/
ResEdit™ 3.0d1
/
ResEdit™ 3.0d1
/
ResEdit™ 3.0d1.rsrc
/
VDL_261_Resource.vers.bin
< prev
next >
Wrap
Text File
|
1996-04-23
|
4KB
|
135 lines
// Automatic TMPL-to-VDL conversion for resource type 'vers'.
// Modified by Marc Rhodes, April 1, 1996.
Margin( 10, 10, 10, 10, Width = UseParent )
VList(Width = UseParent, Alignment = Right )
{
HList
{
EditText(Version_Number, Unsigned(8), Width = 135, Label = "Version Number: ",LabelAlignment = Right, LabelWidth = 105, SingleLine);
StaticText(" . ");
EditText(Revision_Number, Unsigned(4), Width = 30, SingleLine);
StaticText(" . ");
EditText(Fix_Number, Unsigned(4), Width = 30, SingleLine);
}
Spacer(Width = 0, Height = 4);
HList
{
Spacer(Width = 110, Height = 0);
Label("Release ", Single)
Margin(5,5,5,5)
VList()
{
RadioButton("Development", Revision_Stage, 0x20);
RadioButton("Alpha", Revision_Stage, 0x40);
RadioButton("Beta", Revision_Stage, 0x60);
RadioButton("Release", Revision_Stage, 0x80);
}
}
Spacer(Width = 0, Height = 6);
EditText(Build_Number, Unsigned(8), Width = 135, Label = "Internal Stage: ",LabelAlignment = Right, LabelWidth = 105, SingleLine);
Spacer(Width = 0, Height = 4);
IntegerPopup("Country: ", 108, Language_Integer, Width = 273)
{
IntItem("00 - United States", 0);
IntItem("01 - France", 1);
IntItem("02 - Britain", 2);
IntItem("03 - Germany", 3);
IntItem("04 - Italy", 4);
IntItem("05 - NetherLands", 5);
IntItem("06 - Belgium/Luxembourg", 6);
IntItem("07 - Sweden", 7);
IntItem("08 - Spain", 8);
IntItem("09 - Denmark", 9);
IntItem("10 - Portugal", 10);
IntItem("11 - French Canda", 11);
IntItem("12 - Norway", 12);
IntItem("13 - Israel", 13);
IntItem("14 - Japan", 14);
IntItem("15 - Australia", 15);
IntItem("16 - Arabia", 16);
IntItem("17 - Finland", 17);
IntItem("18 - French Swiss", 18);
IntItem("19 - German Swiss", 19);
IntItem("20 - Greece", 20);
IntItem("21 - Iceland", 21);
IntItem("22 - Malta", 22);
IntItem("23 - Cyprus", 23);
IntItem("24 - Turkey", 24);
IntItem("25 - Yugoslavia", 25);
IntItem("-", 1);
IntItem("33 - India", 33);
IntItem("34 - Pakistan", 34);
IntItem("-", 1);
IntItem("41 - Lithuania", 41);
IntItem("42 - Poland", 42);
IntItem("43 - Hungary", 43);
IntItem("44 - Estonia", 44);
IntItem("45 - Latvia", 45);
IntItem("46 - Lapland", 46);
IntItem("47 - Faroe Islands", 47);
IntItem("48 - Iran", 48);
IntItem("49 - Russia", 49);
IntItem("50 - Iceland",5041);
IntItem("51 - Korea", 51);
IntItem("52 - China", 52);
IntItem("53 - Taiwan", 53);
};
Spacer(Width = 0, Height = 4);
EditText(Abbreviated_string, Width = 205, Label = "Abbreviated string: ",LabelAlignment = Right, LabelWidth = 105);
Spacer(Width = 0, Height = 4);
HList
{
StaticText("Suggested string: ", Width = 110, Alignment = Right);
StaticText(Version_Number);
StaticText(".");
StaticText(Revision_Number);
Switch(Fix_Number)
{
case 0:
StaticText("");
default:
HList
{
StaticText(".");
StaticText(Fix_Number);
}
}
Switch(Revision_Stage)
{
case 0x20:
HList
{
StaticText("d");
StaticText(Build_Number);
}
case 0x40:
HList
{
StaticText("a");
StaticText(Build_Number);
}
case 0x60:
HList
{
StaticText("b");
StaticText(Build_Number);
}
case 0x80:
StaticText(" ");
default:
StaticText("");
}
}
Spacer(Width = 0, Height = 4);
EditText(Get_Info_string, Width = UseParent, Height = 29, Label = "Get Info string: ",LabelAlignment = Right, LabelWidth = 105);
Spacer(Width = 0, Height = 4);
} //VList